Race background colors implementation#21
Open
SlightPersimmon1 wants to merge 3 commits intorayfowler:masterfrom
Open
Race background colors implementation#21SlightPersimmon1 wants to merge 3 commits intorayfowler:masterfrom
SlightPersimmon1 wants to merge 3 commits intorayfowler:masterfrom
Conversation
Comment on lines
+700
to
+724
| private Color blendColor( Color c1, Color c2, float ratio ) { | ||
| if ( ratio > 1f ) ratio = 1f; | ||
| else if ( ratio < 0f ) ratio = 0f; | ||
| float iRatio = 1.0f - ratio; | ||
|
|
||
| int i1 = c1.getRGB(); | ||
| int i2 = c2.getRGB(); | ||
|
|
||
| int a1 = (i1 >> 24 & 0xff); | ||
| int r1 = ((i1 & 0xff0000) >> 16); | ||
| int g1 = ((i1 & 0xff00) >> 8); | ||
| int b1 = (i1 & 0xff); | ||
|
|
||
| int a2 = (i2 >> 24 & 0xff); | ||
| int r2 = ((i2 & 0xff0000) >> 16); | ||
| int g2 = ((i2 & 0xff00) >> 8); | ||
| int b2 = (i2 & 0xff); | ||
|
|
||
| int a = (int)((a1 * iRatio) + (a2 * ratio)); | ||
| int r = (int)((r1 * iRatio) + (r2 * ratio)); | ||
| int g = (int)((g1 * iRatio) + (g2 * ratio)); | ||
| int b = (int)((b1 * iRatio) + (b2 * ratio)); | ||
|
|
||
| return new Color( a << 24 | r << 16 | g << 8 | b ); | ||
| } |
Contributor
Author
There was a problem hiding this comment.
Of course, if the "blending" option is used, this method really should not be here
This reverts commit 12b98bb.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
I included two solutions: one is simply darkening and brightening the race color to form the gradient. The other is to blend the race color with the gradient that was already there (with some color adjustments).